home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / POV302.ZIP / pov302 / pov3demo / other / pov / matrix < prev    next >
Text File  |  1995-11-08  |  699b  |  32 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Simple demonstration of the matrix keyword
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. camera {
  8.    location  <3, 5, -15>
  9.    direction <0, 0, 4>
  10.    look_at   <0, 1, 0>
  11. }
  12.  
  13. light_source { <50, 100, -200> color rgb <1,1,1> }
  14. plane { y, 0 pigment { color rgb <0,0,1> } }        // Ground plane
  15.  
  16. box {
  17.     -1,1
  18.     pigment { color rgb <1,1,1> }
  19. }
  20. box {
  21.     -0.5,0.5
  22.     pigment { color rgb <1,0,0> }
  23.  
  24.     // Matrix does rotation about the Y axis, shear along the Y axis, and
  25.     // translation along the Y axis
  26.  
  27.     matrix <0.886, 0.5, 0.5,
  28.         0,     1,   0,
  29.         0.5,   0,  -0.886,
  30.         0,     1.5, 0>        // 4th 3-vector is translation
  31. }
  32.